home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #3 / Amiga Plus CD - 2002 - No. 03.iso / AmiSoft / Dev / Gui / Cit.lha / CIT / citra / CITHook.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-12-18  |  298 b   |  27 lines

  1. //
  2. //       CITList and CITHook include
  3. //
  4. //                         StormC
  5. //
  6. //            version 2002.12.13
  7. //
  8.  
  9. #ifndef CIT_HOOK_H
  10. #define CIT_HOOK_H TRUE
  11.  
  12. #include <utility/hooks.h>
  13.  
  14. extern "C"
  15. {
  16.   extern void* getA4();
  17.   extern ULONG hookEntry();
  18. }
  19.  
  20.  
  21. struct CITHook:public Hook
  22. {
  23.   void* dataBase;
  24. };
  25.  
  26. #endif
  27.